home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #9
/
Amiga Plus CD - 2004 - No. 09.iso
/
amigaplus
/
tools
/
amigaos4_only
/
ifxlite
/
imagefx3
/
rexx
/
layertext.ifx
< prev
next >
Wrap
Text File
|
2004-08-03
|
711b
|
48 lines
/* Test layer functions */
OPTIONS RESULTS
GetMain
IF rc ~= 0 THEN EXIT 0
Redraw Off
LockGui
Text FONT times.font SIZE 24 TEXT 'Shadows Are Cool!'
IF rc ~= 0 THEN DO
RequestNotify 'Cannot create text brush'
EXIT 0
END
/* need this because the brush is now active */
Region Full
CreateLayer FROMBRUSH
IF rc = 0 THEN DO
LayerMode DARKEN
LayerName "Shadow"
LayerOffset
PARSE VAR result x y
LayerOffset x+3 y+3
END
ELSE DO
RequestNotify 'Cannot create shadow layer'
EXIT 0
END
CreateLayer FROMBRUSH
IF rc = 0 THEN DO
LayerMode NORMAL
LayerName "Text"
END
ELSE DO
RequestNotify 'Cannot create text layer'
EXIT 0
END
KillBrush
UnlockGui
Redraw On
Redraw